home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / getpid.c < prev    next >
C/C++ Source or Header  |  1991-09-29  |  2KB  |  55 lines

  1. /* 
  2.  * getpid.c --
  3.  *
  4.  *    Source code for the getpid library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/getpid.c,v 1.1 88/11/17 13:30:40 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <proc.h>
  22. #include "compatInt.h"
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * getpid --
  27.  *
  28.  *    Procedure to map from Unix getpid system call to Sprite Proc_GetIDs.
  29.  *
  30.  * Results:
  31.  *    UNIX_ERROR is returned upon error, with the actual error code
  32.  *    stored in errno.  Upon success, the process ID of the current
  33.  *    process is returned.
  34.  *
  35.  * Side effects:
  36.  *    None.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. int
  42. getpid()
  43. {
  44.     ReturnStatus status;    /* result returned by Proc_GetIDs */
  45.     int pid;            /* ID of current process */
  46.  
  47.     status = Proc_GetIDs(&pid, (int *) NULL, (int *) NULL, (int *) NULL);
  48.     if (status != SUCCESS) {
  49.     errno = Compat_MapCode(status);
  50.     return(UNIX_ERROR);
  51.     } else {
  52.     return(pid);
  53.     }
  54. }
  55.